*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    background:#050816;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow-x:hidden;
    position:relative;
}

/* Background Glow */

body::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#7b2cff;
    filter:blur(220px);
    opacity:.25;
    top:-150px;
    left:-100px;
}

body::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#3b82f6;
    filter:blur(220px);
    opacity:.20;
    right:-100px;
    bottom:-100px;
}

/* Main Container */

.signup-container{
    width:1200px;
    max-width:95%;
    min-height:700px;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border-radius:30px;
    overflow:hidden;
    position:relative;
    z-index:5;
}

/* Left Side */

.signup-left{
    padding:70px;
    background:
    linear-gradient(
        135deg,
        rgba(123,44,255,.20),
        rgba(59,130,246,.10)
    );
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.logo-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:
    linear-gradient(
        135deg,
        #7b2cff,
        #b86cff
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    margin-bottom:25px;
}

.brand h1{
    font-size:52px;
    margin-bottom:10px;
}

.brand span{
    color:#9f63ff;
}

.brand p{
    color:#b8bfd1;
    line-height:1.9;
    max-width:500px;
}

.feature-list{
    margin-top:60px;
}

.feature{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.feature i{
    color:#9f63ff;
    font-size:22px;
}

/* Right Side */

.signup-right{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px;
}

.form-box{
    width:100%;
    max-width:480px;
}

.form-box h2{
    font-size:40px;
    margin-bottom:10px;
}

.form-box p{
    color:#b8bfd1;
    margin-bottom:35px;
}

.input-group{
    margin-bottom:20px;
}

.input-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    color:#d7dcef;
}

.input-group input{
    width:100%;
    height:58px;
    border:none;
    outline:none;
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
    color:white;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);
}

.input-group input:focus{
    border:1px solid #8f4fff;
    box-shadow:
    0 0 0 4px rgba(143,79,255,.15);
}

.signup-btn{
    width:100%;
    height:60px;
    border:none;
    cursor:pointer;
    border-radius:14px;

    background:
    linear-gradient(
        135deg,
        #7b2cff,
        #b86cff
    );

    color:white;
    font-size:16px;
    font-weight:600;

    transition:.3s;
}

.signup-btn:hover{
    transform:translateY(-3px);
    box-shadow:
    0 15px 35px rgba(123,44,255,.35);
}

.login-link{
    margin-top:25px;
    text-align:center;
    color:#b8bfd1;
}

.login-link a{
    color:#9f63ff;
    text-decoration:none;
    font-weight:600;
}

/* Responsive */

@media(max-width:1000px){

    .signup-container{
        grid-template-columns:1fr;
    }

    .signup-left{
        display:none;
    }

    .signup-right{
        padding:35px;
    }
}

@media(max-width:600px){

    .form-box h2{
        font-size:32px;
    }

    .signup-right{
        padding:25px;
    }

    .input-group input{
        height:54px;
    }
}